home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 33 / Amiga Format AFCD33 (Issue 117, Dec 1998).iso / -seriously_amiga- / archivers / unace / unacesrc / os.h < prev    next >
C/C++ Source or Header  |  1998-09-07  |  358b  |  25 lines

  1. #ifndef __os_h
  2. #define __os_h
  3.  
  4.  
  5. #if defined(AMIGA)
  6.   #define DIRSEP '/'
  7.   #define HI_LO_BYTE_ORDER
  8. #endif
  9.  
  10. #if defined(DOS) || defined(WINNT) || defined(WIN16)
  11.   #define DIRSEP '\\'
  12.   #define LO_HI_BYTE_ORDER
  13. #endif
  14.  
  15. #if defined(OS2)
  16.   #define DIRSEP '\\'
  17.   #define LO_HI_BYTE_ORDER
  18. #endif
  19.  
  20. #if defined(UNIX)
  21.   #define DIRSEP '/'
  22. #endif
  23.  
  24. #endif /* __os_h */
  25.